In [1]:
symbols = '$¢£¥€Ω'
In [2]:
codes = []
In [3]:
for symbol in symbols:
codes.append(ord(symbol))
In [4]:
codes
Out[4]:
In [5]:
codes = [ord(symbol) for symbol in symbols]
In [6]:
codes
Out[6]:
In [ ]:
symbols = '$¢£¥€Ω'
In [7]:
beyond_ascii = [ord(s) for s in symbols if ord(s) > 127]
In [8]:
beyond_ascii
Out[8]:
In [9]:
beyond_ascii = list(filter(lambda c: c > 127, map(ord, symbols)))
In [10]:
beyond_ascii
Out[10]:
In [14]:
list(filter(lambda c: c > 127, list(map(ord, symbols))))
Out[14]:
In [1]:
colors = ['black', 'white']
In [2]:
sizes = ['S', 'M', 'L']
In [3]:
tshirts = [(color, size) for color in colors for size in sizes]
In [4]:
tshirts
Out[4]:
In [5]:
for color in colors:
for size in sizes:
print((color, size))
In [6]:
tshirts = [(color, size) for size in sizes for color in colors]
In [7]:
tshirts
Out[7]:
In [11]:
symbols = '$¢£¥€' + chr(164)
In [12]:
tuple(ord(symbol) for symbol in symbols)
Out[12]:
In [13]:
import array
In [15]:
array.array('I', (ord(symbol) for symbol in symbols))
Out[15]:
In [16]:
colors = ['black','white']
In [17]:
sizes = ['S','M','L']
In [21]:
for tshirt in ('%s %s' % (c, s) for c in colors for s in sizes):
print(tshirt)
In [22]:
lax_coordinates = (33.9425, -118.408056)
In [23]:
city, year, pop, chg, area = ('Tokyo',2003, 32450, 0.66, 8014)
In [24]:
traveler_ids = [('USA','31195855'), ('BRA', 'CE342567'),('ESP','XDA205856')]
In [25]:
for passport in sorted(traveler_ids):
print('%s/%s' % passport)
In [27]:
for country, _ in traveler_ids:
print(country)
In [28]:
lax_coordinates = (33.9425, -118.408056)
In [29]:
latitude, longitude = lax_coordinates
In [30]:
latitude
Out[30]:
In [31]:
longitude
Out[31]:
In [32]:
divmod(20,8)
Out[32]:
In [33]:
t = (20, 8)
In [34]:
divmod(*t)
Out[34]:
In [35]:
quotient, remainder = divmod(*t)
In [36]:
quotient, remainder
Out[36]:
In [37]:
import os
In [38]:
_, filename = os.path.split('C:/Users/langestrst01/.ssh/id_rsa.pub')
In [39]:
filename
Out[39]:
In [40]:
os.path.split('C:/Users/langestrst01/.ssh/id_rsa.pub')
Out[40]:
In [41]:
a, b, *rest = range(5)
In [42]:
a, b, rest
Out[42]:
In [46]:
a,b, *rest = range(3)
In [48]:
a, b, rest
Out[48]:
In [49]:
a, b, *rest = range(2)
In [50]:
a, b, rest
Out[50]:
In [51]:
a, *body, c, d = range(5)
In [52]:
a, body, c, d
Out[52]:
In [53]:
*head, b, c, d = range(5)
In [54]:
head, b, c, d
Out[54]:
In [80]:
metro_areas = [
('Tokyo', 'JP', 36.933, (35.689722, 139.691667)),
('Delhi NCR', 'IN', 21.935, (28.613889, 77.208889)),
('Mexico City', 'MX', 20.142, (19.433333, -99.133333)),
('New York-Newark', 'US', 20.104, (40.808611, -74.020386)),
('Sao Paulo', 'BR', 19.649, (-23.547778, -46.635833)),
]
In [81]:
print('{:15} | {:^9} | {:^9}'.format('', 'lat.', 'long.'))
fmt = '{:15} | {:9.4f} | {:9.4f}'
for name, cc, pop, (latitude, longitude) in metro_areas:
if longitude <= 0:
print(fmt.format(name, latitude, longitude))
In [82]:
from collections import namedtuple
In [83]:
City = namedtuple('City','name country population coordinates')
In [84]:
tokyo = City('Tokyo', 'JP', 36.933, (35.689722, 139.691667))
In [85]:
tokyo
Out[85]:
In [86]:
tokyo.population
Out[86]:
In [87]:
tokyo.coordinates
Out[87]:
In [88]:
tokyo[1]
Out[88]:
In [89]:
City._fields
Out[89]:
In [90]:
LatLong = namedtuple('LatLong', 'lat long')
In [91]:
delhi_data = ('Delhi NCR', 'IN', 21.935, (28.613889, 77.208889))
In [92]:
delhi = City._make(delhi_data)
In [93]:
delhi._asdict()
Out[93]:
In [97]:
for key, value in delhi._asdict().items():
print(key + ':',value)
In [95]:
delhi
Out[95]:
In [6]:
l = [10, 20, 30, 40, 50, 60]
In [7]:
l[:2]
Out[7]:
In [8]:
l[2:]
Out[8]:
In [9]:
l[:3]
Out[9]:
In [10]:
l[3:]
Out[10]:
In [11]:
s = 'bicycle'
In [12]:
s[::3]
Out[12]:
In [13]:
s[::1]
Out[13]:
In [15]:
s[::-2]
Out[15]:
In [14]:
invoice = """
0.....6.................................40...........52..55..........
1909 Pimoroni PiBrella $17.50 3 $52.50
1489 6mm Tactile Switch x20 $4.95 2 $9.90
1510 Panavise Jr. - PV-201 $28.00 1 $28.00
1601 PiTFT Mini Kit 320x240 $34.95 1 $34.95
"""
In [2]:
invoice
Out[2]:
In [3]:
SKU = slice(0,6)
In [4]:
SKU
Out[4]:
In [5]:
DESCRIPTION = slice(6,40)
In [6]:
UNIT_PRICE = slice(52,55)
In [7]:
QUANTITY = slice(55, 55)
In [8]:
ITEM_TOTAL = slice(55, None)
In [15]:
line_items = invoice.split('\n')[2:]
In [16]:
line_items
Out[16]:
In [17]:
for item in line_items:
print(item[UNIT_PRICE], item[DESCRIPTION])
In [18]:
l = list(range(10))
In [19]:
l
Out[19]:
In [22]:
l[2:5] = [20,30]
In [23]:
l
Out[23]:
In [25]:
del l[5:7]
In [26]:
l
Out[26]:
In [28]:
l[3::2] = [11,22]
In [29]:
l
Out[29]:
In [30]:
l[2:5] = 100
In [31]:
l[2:5] = [100]
In [32]:
l
Out[32]:
In [33]:
l = [1,2,3]
In [34]:
l * 5
Out[34]:
In [35]:
5 * 'abcd'
Out[35]:
In [36]:
board = [['_'] * 3 for i in range(3)]
In [37]:
board
Out[37]:
In [38]:
board[1][2] = 'X'
In [39]:
board
Out[39]:
In [40]:
weird_board = [['_'] * 3] * 3
In [41]:
weird_board
Out[41]:
In [42]:
weird_board[1][2] = '0'
In [43]:
weird_board
Out[43]:
In [57]:
row = ['_'] * 3
board = []
for i in range(3):
board.append(row)
In [58]:
board
Out[58]:
In [59]:
board[2][0] = 'X'
In [60]:
board
Out[60]:
In [53]:
board = []
for i in range(3):
row = ['_'] * 3
board.append(row)
In [54]:
board
Out[54]:
In [55]:
board[2][0] = 'X'
In [56]:
board
Out[56]:
In [1]:
l = [1, 2, 3]
In [2]:
id(l)
Out[2]:
In [3]:
l *=2
In [4]:
l
Out[4]:
In [5]:
id(l)
Out[5]:
In [6]:
t = (1, 2, 3)
In [7]:
id(t)
Out[7]:
In [8]:
t *= 2
In [9]:
t
Out[9]:
In [10]:
id(t)
Out[10]:
In [11]:
t = (1, 2, [30, 40])
In [15]:
t[2] += [50, 60]
In [16]:
t
Out[16]:
In [22]:
import dis
dis.dis('s[a] += b')
In [23]:
fruits = ['grape', 'raspberry', 'apple', 'banana']
In [24]:
sorted(fruits)
Out[24]:
In [25]:
fruits
Out[25]:
In [26]:
sorted(fruits, reverse = True)
Out[26]:
In [27]:
sorted(fruits, key=len)
Out[27]:
In [28]:
sorted(fruits, key=len, reverse=True)
Out[28]:
In [29]:
fruits
Out[29]:
In [30]:
fruits.sort()
In [31]:
fruits
Out[31]:
In [32]:
import bisect
import sys
In [33]:
HAYSTACK = [1, 4, 5, 6, 8, 12, 15, 20, 21, 23, 26, 29, 30]
NEEDLES = [0, 1, 2, 5, 8, 10, 22, 23, 29, 30, 31]
In [60]:
ROW_FMT = '{0:2d} @ {1:2d} {2}{0:<2d}'
In [53]:
def demo(bisect_fn):
for needle in reversed(NEEDLES):
position = bisect_fn(HAYSTACK, needle)
offset = position * ' |'
print(ROW_FMT.format(needle, position, offset))
In [66]:
bisect_fn = bisect.bisect
print('DEMO:', bisect_fn.__name__)
print('haystack->', ' '.join('%2d' % n for n in HAYSTACK))
demo(bisect_fn)
In [65]:
bisect_fn = bisect.bisect_left
print('DEMO:', bisect_fn.__name__)
print('haystack->', ' '.join('%2d' % n for n in HAYSTACK))
demo(bisect_fn)
In [67]:
def grade(score, breakpoints=[60, 70, 80, 90], grades='FDCBA'):
i = bisect.bisect(breakpoints, score)
return grades[i]
In [68]:
[grade(score) for score in [33, 99, 77, 70, 89, 90, 100]]
Out[68]:
In [86]:
import bisect
import random
In [87]:
SIZE = 7
In [88]:
random.seed(1729)
In [89]:
my_list =[]
for i in range(SIZE):
new_item = random.randrange(SIZE*2)
bisect.insort(my_list, new_item)
print('%2d ->' % new_item, my_list )
In [1]:
from array import array
from random import random
In [2]:
floats = array('d', (random() for i in range(10**7)))
In [3]:
floats[-1]
Out[3]:
In [4]:
fp = open('floats.bin', 'wb')
In [5]:
floats.tofile(fp)
In [6]:
fp.close()
In [7]:
floats2 = array('d')
In [8]:
fp = open('floats.bin','rb')
In [9]:
floats2.fromfile(fp,10**7)
In [10]:
fp.close()
In [11]:
floats2[-1]
Out[11]:
In [12]:
floats2 == floats
Out[12]:
In [ ]: